home *** CD-ROM | disk | FTP | other *** search
/ Windows 95 Super Collection / Windows 95 Super Collection.iso / win95 / programm / vbxstd20 / vbxdemo.h_ / VBXDEMO.H
Encoding:
C/C++ Source or Header  |  1995-07-20  |  2.0 KB  |  60 lines

  1. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  2. //
  3. //        VBXDEMO.H
  4. //        VBX Studio 2.0 
  5. //        18-jul-95
  6. //        «HEXANET, COPYRIGHT HEXANET 1993-1995, ALL RIGHTS RESERVED
  7. //        EMail: hnet@dialup.francenet.fr / CIS: 100333,27
  8. //        HexaNet SW - BP 385.16 - 75768 PARIS CDX 16 - FRANCE
  9. //
  10. //        You can distribute this file as long as you distribute
  11. //        the full VBX Studio package.
  12. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  13. //        You can use this sample file as you want.
  14. // --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
  15.  
  16. #ifndef __AFXWIN_H__
  17.     #error include 'stdafx.h' before including this file for PCH
  18. #endif
  19.  
  20. #include "resource.h"       // main symbols
  21.  
  22. /////////////////////////////////////////////////////////////////////////////
  23. // CVbxdemoApp:
  24. // See vbxdemo.cpp for the implementation of this class
  25. //
  26. extern BOOL bHlpNotHere;
  27.  
  28. class CVbxdemoApp : public CWinApp
  29. {
  30. public:
  31.     CVbxdemoApp();
  32.  
  33. // Overrides
  34.     virtual BOOL InitInstance();
  35.     virtual int ExitInstance();
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CVbxdemoApp)
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46. /////////////////////////////////////////////////////////////////////////////
  47. // VB-Event extern declarations
  48.  
  49. //{{AFX_VBX_REGISTER()
  50.     extern UINT NEAR VBN_FILEDROPPED;
  51.     extern UINT NEAR VBN_UPDATE;
  52.     extern UINT NEAR VBN_SCROLLUP;
  53.     extern UINT NEAR VBN_SCROLLDN;
  54.     extern UINT NEAR VBN_SELCHANGE;
  55.     extern UINT NEAR VBN_DBLCLICK;
  56.     extern UINT NEAR VBN_CLICK;
  57. //}}AFX_VBX_REGISTER
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60.